Current Location: Home> Function Categories> atanh

atanh

Antihyperbolic tangent
Name:atanh
Category:math
Programming Language:php
One-line Description:Inverse hyperbolic tangent.

Definition and usage

atanh() function returns an inverse hyperbolic tangent of an angle.

Example

Returns the inverse hyperbolic tangent value of different values:

 <?php
echo ( atanh ( M_PI_4 ) ) ;
echo ( atanh ( 0.50 ) ) ;
echo ( atanh ( - 0.50 ) ) ;
echo ( atanh ( 1 ) ) ;
echo ( atanh ( - 1 ) ) ;
?>

Try it yourself

grammar

 atanh ( x )
parameter describe
x Required. A number.

illustrate

atanh() function returns the inverse hyperbolic tangent value of x , that is, the value whose hyperbolic tangent is x .

Similar Functions
  • Convert hexadecimal to decimal hexdec

    hexdec

    Converthexadecimalto
  • Calculate the index of e exp

    exp

    Calculatetheindexofe
  • Get the pi value pi

    pi

    Getthepivalue
  • Perform floating point division under IEEE 754 semantics fdiv

    fdiv

    Performfloatingpoint
  • Ancient sine asin

    asin

    Ancientsine
  • Convert decimal to octal decoct

    decoct

    Convertdecimaltoocta
  • Hyperbolic cosine cosh

    cosh

    Hyperboliccosine
  • Hyperbolic tangent tanh

    tanh

    Hyperbolictangent
Popular Articles